home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / Archivers / ZLib / ChangeLog < prev    next >
Encoding:
Text File  |  1998-02-20  |  10.8 KB  |  241 lines

  1.  
  2.         ChangeLog file for zlib
  3.  
  4. Changes in 1.0.4 (24 Jul 96)
  5. - In very rare conditions, deflate(s, Z_FINISH) could fail to produce an EOF
  6.   bit, so the decompressor could decompress all the correct data but went
  7.   on to attempt decompressing extra garbage data. This affected minigzip too.
  8. - zlibVersion and gzerror return const char* (needed for DLL)
  9. - port to RISCOS (no fdopen, no multiple dots, no unlink, no fileno)
  10. - use z_error only for DEBUG (avoid problem with DLLs)
  11. - Minor HP-UX configuration changes (see HPUX.Install document)
  12.  
  13. Changes in 1.0.3 (2 Jul 96)
  14. - use z_streamp instead of z_stream *, which is now a far pointer in MSDOS
  15.   small and medium models; this makes the library incompatible with previous
  16.   versions for these models. (No effect in large model or on other systems.)
  17. - return OK instead of BUF_ERROR if previous deflate call returned with
  18.   avail_out as zero but there is nothing to do
  19. - added memcmp for non STDC compilers
  20. - define NO_DUMMY_DECL for more Mac compilers (.h files merged incorrectly)
  21. - define __32BIT__ if __386__ or i386 is defined (pb. with Watcom and SCO)
  22. - better check for 16-bit mode MSC (avoids problem with Symantec)
  23.  
  24. Changes in 1.0.2 (23 May 96)
  25. - added Windows DLL support
  26. - added a function zlibVersion (for the DLL support)
  27. - fixed declarations using Bytef in infutil.c (pb with MSDOS medium model)
  28. - Bytef is define's instead of typedef'd only for Borland C
  29. - avoid reading uninitialized memory in example.c
  30. - mention in README that the zlib format is now RFC1950
  31. - updated Makefile.dj2
  32. - added algorithm.doc
  33.  
  34. Changes in 1.0.1 (20 May 96) [1.0 skipped to avoid confusion]
  35. - fix array overlay in deflate.c which sometimes caused bad compressed data
  36. - fix inflate bug with empty stored block
  37. - fix MSDOS medium model which was broken in 0.99
  38. - fix deflateParams() which could generated bad compressed data.
  39. - Bytef is define'd instead of typedef'ed (work around Borland bug)
  40. - added an INDEX file
  41. - new makefiles for DJGPP (Makefile.dj2), 32-bit Borland (Makefile.b32),
  42.   Watcom (Makefile.wat), Amiga SAS/C (Makefile.sas)
  43. - speed up adler32 for modern machines without auto-increment
  44. - added -ansi for IRIX in configure
  45. - static_init_done in trees.c is an int
  46. - define unlink as delete for VMS
  47. - fix configure for QNX
  48. - add configure branch for SCO and HPUX
  49. - avoid many warnings (unused variables, dead assignments, etc...)
  50. - no fdopen for BeOS
  51. - fix the Watcom fix for 32 bit mode (define FAR as empty)
  52. - removed redefinition of Byte for MKWERKS
  53. - work around an MWKERKS bug (incorrect merge of all .h files)
  54.  
  55. Changes in 0.99 (27 Jan 96)
  56. - allow preset dictionary shared between compressor and decompressor
  57. - allow compression level 0 (no compression)
  58. - add deflateParams in zlib.h: allow dynamic change of compression level
  59.   and compression strategy.
  60. - test large buffers and deflateParams in example.c
  61. - add optional "configure" to build zlib as a shared library
  62. - suppress Makefile.qnx, use configure instead
  63. - fixed deflate for 64-bit systems (detected on Cray)
  64. - fixed inflate_blocks for 64-bit systems (detected on Alpha)
  65. - declare Z_DEFLATED in zlib.h (possible parameter for deflateInit2)
  66. - always return Z_BUF_ERROR when deflate() has nothing to do
  67. - deflateInit and inflateInit are now macros to allow version checking
  68. - prefix all global functions and types with z_ with -DZ_PREFIX
  69. - make falloc completely reentrant (inftrees.c)
  70. - fixed very unlikely race condition in ct_static_init
  71. - free in reverse order of allocation to help memory manager
  72. - use zlib-1.0/* instead of zlib/* inside the tar.gz
  73. - make zlib warning-free with "gcc -O3 -Wall -Wwrite-strings -Wpointer-arith
  74.   -Wconversion -Wstrict-prototypes -Wmissing-prototypes"
  75. - allow gzread on concatenated .gz files
  76. - deflateEnd now returns Z_DATA_ERROR if it was premature
  77. - deflate is finally (?) fully deterministic (no matches beyond end of input)
  78. - Document Z_SYNC_FLUSH
  79. - add uninstall in Makefile
  80. - Check for __cpluplus in zlib.h
  81. - Better test in ct_align for partial flush
  82. - avoid harmless warnings for Borland C++
  83. - initialize hash_head in deflate.c
  84. - avoid warning on fdopen (gzio.c) for HP cc -Aa
  85. - include stdlib.h for STDC compilers
  86. - include errno.h for Cray
  87. - ignore error if ranlib doesn't exist
  88. - call ranlib twice for NeXTSTEP
  89. - use exec_prefix instead of prefix for libz.a
  90. - renamed ct_* as _tr_* to avoid conflict with applications
  91. - clear z->msg in inflateInit2 before any error return
  92. - initialize opaque in example.c, gzio.c, deflate.c and inflate.c
  93. - fixed typo in zconf.h (_GNUC__ => __GNUC__)
  94. - check for WIN32 in zconf.h and zutil.c (avoid farmalloc in 32-bit mode)
  95. - fix typo in Make_vms.com (f$trnlnm -> f$getsyi)
  96. - in fcalloc, normalize pointer if size > 65520 bytes
  97. - don't use special fcalloc for 32 bit Borland C++
  98. - use STDC instead of __GO32__ to avoid redeclaring exit, calloc, etc...
  99. - use Z_BINARY instead of BINARY
  100. - document that gzclose after gzdopen will close the file
  101. - allow "a" as mode in gzopen.
  102. - fix error checking in gzread
  103. - allow skipping .gz extra-field on pipes
  104. - added reference to Perl interface in README
  105. - put the crc table in FAR data (I dislike more and more the medium model :)
  106. - added get_crc_table
  107. - added a dimension to all arrays (Borland C can't count).
  108. - workaround Borland C bug in declaration of inflate_codes_new & inflate_fast
  109. - guard against multiple inclusion of *.h (for precompiled header on Mac)
  110. - Watcom C pretends to be Microsoft C small model even in 32 bit mode.
  111. - don't use unsized arrays to avoid silly warnings by Visual C++:
  112.      warning C4746: 'inflate_mask' : unsized array treated as  '__far'
  113.      (what's wrong with far data in far model?).
  114. - define enum out of inflate_blocks_state to allow compilation with C++
  115.  
  116. Changes in 0.95 (16 Aug 95)
  117. - fix MSDOS small and medium model (now easier to adapt to any compiler)
  118. - inlined send_bits
  119. - fix the final (:-) bug for deflate with flush (output was correct but
  120.   not completely flushed in rare occasions).
  121. - default window size is same for compression and decompression
  122.   (it's now sufficient to set MAX_WBITS in zconf.h).
  123. - voidp -> voidpf and voidnp -> voidp (for consistency with other
  124.   typedefs and because voidnp was not near in large model).
  125.  
  126. Changes in 0.94 (13 Aug 95)
  127. - support MSDOS medium model
  128. - fix deflate with flush (could sometimes generate bad output)
  129. - fix deflateReset (zlib header was incorrectly suppressed)
  130. - added support for VMS
  131. - allow a compression level in gzopen()
  132. - gzflush now calls fflush
  133. - For deflate with flush, flush even if no more input is provided.
  134. - rename libgz.a as libz.a
  135. - avoid complex expression in infcodes.c triggering Turbo C bug
  136. - work around a problem with gcc on Alpha (in INSERT_STRING)
  137. - don't use inline functions (problem with some gcc versions)
  138. - allow renaming of Byte, uInt, etc... with #define.
  139. - avoid warning about (unused) pointer before start of array in deflate.c
  140. - avoid various warnings in gzio.c, example.c, infblock.c, adler32.c, zutil.c
  141. - avoid reserved word 'new' in trees.c
  142.  
  143. Changes in 0.93 (25 June 95)
  144. - temporarily disable inline functions
  145. - make deflate deterministic
  146. - give enough lookahead for PARTIAL_FLUSH
  147. - Set binary mode for stdin/stdout in minigzip.c for OS/2
  148. - don't even use signed char in inflate (not portable enough)
  149. - fix inflate memory leak for segmented architectures
  150.  
  151. Changes in 0.92 (3 May 95)
  152. - don't assume that char is signed (problem on SGI)
  153. - Clear bit buffer when starting a stored block
  154. - no memcpy on Pyramid
  155. - suppressed inftest.c
  156. - optimized fill_window, put longest_match inline for gcc
  157. - optimized inflate on stored blocks.
  158. - untabify all sources to simplify patches
  159.  
  160. Changes in 0.91 (2 May 95)
  161. - Default MEM_LEVEL is 8 (not 9 for Unix) as documented in zlib.h
  162. - Document the memory requirements in zconf.h
  163. - added "make install"
  164. - fix sync search logic in inflateSync
  165. - deflate(Z_FULL_FLUSH) now works even if output buffer too short
  166. - after inflateSync, don't scare people with just "lo world"
  167. - added support for DJGPP
  168.  
  169. Changes in 0.9 (1 May 95)
  170. - don't assume that zalloc clears the allocated memory (the TurboC bug
  171.   was Mark's bug after all :)
  172. - let again gzread copy uncompressed data unchanged (was working in 0.71)
  173. - deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented
  174. - added a test of inflateSync in example.c
  175. - moved MAX_WBITS to zconf.h because users might want to change that.
  176. - document explicitly that zalloc(64K) on MSDOS must return a normalized
  177.   pointer (zero offset)
  178. - added Makefiles for Microsoft C, Turbo C, Borland C++
  179. - faster crc32()
  180.  
  181. Changes in 0.8 (29 April 95)
  182. - added fast inflate (inffast.c)
  183. - deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this
  184.   is incompatible with previous versions of zlib which returned Z_OK.
  185. - work around a TurboC compiler bug (bad code for b << 0, see infutil.h)
  186.   (actually that was not a compiler bug, see 0.81 above)
  187. - gzread no longer reads one extra byte in certain cases
  188. - In gzio destroy(), don't reference a freed structure
  189. - avoid many warnings for MSDOS
  190. - avoid the ERROR symbol which is used by MS Windows
  191.  
  192. Changes in 0.71 (14 April 95)
  193. - Fixed more MSDOS compilation problems :( There is still a bug with
  194.   TurboC large model.
  195.  
  196. Changes in 0.7 (14 April 95)
  197. - Added full inflate support.
  198. - Simplified the crc32() interface. The pre- and post-conditioning
  199.   (one's complement) is now done inside crc32(). WARNING: this is
  200.   incompatible with previous versions; see zlib.h for the new usage.
  201.  
  202. Changes in 0.61 (12 April 95)
  203. - workaround for a bug in TurboC. example and minigzip now work on MSDOS.
  204.  
  205. Changes in 0.6 (11 April 95)
  206. - added minigzip.c
  207. - added gzdopen to reopen a file descriptor as gzFile
  208. - added transparent reading of non-gziped files in gzread.
  209. - fixed bug in gzread (don't read crc as data)
  210. - fixed bug in destroy (gzio.c) (don't return Z_STREAM_END for gzclose).
  211. - don't allocate big arrays in the stack (for MSDOS)
  212. - fix some MSDOS compilation problems
  213.  
  214. Changes in 0.5:
  215. - do real compression in deflate.c. Z_PARTIAL_FLUSH is supported but
  216.   not yet Z_FULL_FLUSH.
  217. - support decompression but only in a single step (forced Z_FINISH)
  218. - added opaque object for zalloc and zfree.
  219. - added deflateReset and inflateReset
  220. - added a variable zlib_version for consistency checking.
  221. - renamed the 'filter' parameter of deflateInit2 as 'strategy'.
  222.   Added Z_FILTERED and Z_HUFFMAN_ONLY constants.
  223.  
  224. Changes in 0.4:
  225. - avoid "zip" everywhere, use zlib instead of ziplib.
  226. - suppress Z_BLOCK_FLUSH, interpret Z_PARTIAL_FLUSH as block flush
  227.   if compression method == 8.
  228. - added adler32 and crc32
  229. - renamed deflateOptions as deflateInit2, call one or the other but not both
  230. - added the method parameter for deflateInit2.
  231. - added inflateInit2
  232. - simplied considerably deflateInit and inflateInit by not supporting
  233.   user-provided history buffer. This is supported only in deflateInit2
  234.   and inflateInit2.
  235.  
  236. Changes in 0.3:
  237. - prefix all macro names with Z_
  238. - use Z_FINISH instead of deflateEnd to finish compression.
  239. - added Z_HUFFMAN_ONLY
  240. - added gzerror()
  241.